projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac6991f
)
drivers: spi: Remove duplicate .probe method
author
Suniel Mahesh
<
[email protected]
>
Wed, 3 May 2017 06:17:29 +0000
(11:47 +0530)
committer
Jagan Teki
<
[email protected]
>
Wed, 3 May 2017 06:22:16 +0000
(11:52 +0530)
.probe method has been assigned twice when declaring
a driver with U_BOOT_DRIVER(). Removed one of them.
Here is the last commit which had the duplicate entry:
"spi: omap3: Convert to driver model"
(sha1:
77b8d04854f486741471ad02b93b473b5b3d72f8
)
Signed-off-by: Suniel Mahesh <
[email protected]
>
Reviewed-by: Jagan Teki <
[email protected]
>
drivers/spi/omap3_spi.c
patch
|
blob
|
history
diff --git
a/drivers/spi/omap3_spi.c
b/drivers/spi/omap3_spi.c
index 8a8945010973c54c09f5eac4532354315ee6f3bc..76d376ac44500eebc7b201f463ba0ee55259fb61 100644
(file)
--- a/
drivers/spi/omap3_spi.c
+++ b/
drivers/spi/omap3_spi.c
@@
-692,6
+692,5
@@
U_BOOT_DRIVER(omap3_spi) = {
.probe = omap3_spi_probe,
.ops = &omap3_spi_ops,
.priv_auto_alloc_size = sizeof(struct omap3_spi_priv),
- .probe = omap3_spi_probe,
};
#endif